home *** CD-ROM | disk | FTP | other *** search
/ Hart's War Press Kit / Hart's War Press Kit.iso / pc / pcstubwqt.dir / 00002_Script_first frame script < prev    next >
Text File  |  2002-01-14  |  593b  |  26 lines

  1. on exitFrame
  2.   if tryToSetColorDepth (16) = FALSE then  -- Check color depth
  3.     go "changeColorDepth"
  4.   else
  5.     if quickTimeVersion() < 4.0 then  -- check QT
  6.       --tell them to install QT
  7.       go "QTInstall"
  8.     else 
  9.       go movie "Hart's_War"
  10.     end if
  11.   end if
  12.   
  13. end
  14.  
  15. on TryToSetColorDepth desiredDepth
  16.   if the colordepth >= desiredDepth then return TRUE
  17.   if the environment.platform contains "Windows,32" then RETURN FALSE
  18.   set the colordepth to desiredDepth
  19.   if the colorDepth = desiredDepth then
  20.     return true
  21.   else
  22.     return false
  23.   end if
  24. end
  25.  
  26.